home *** CD-ROM | disk | FTP | other *** search
/ L' Effet Pommier 3 / L'Effet Pommier - Volume 03.iso / Programmation / Alpha ƒ / Tcl / UserCode / Text Filters / Text Munging / shuffle < prev    next >
Text File  |  1994-02-11  |  230b  |  7 lines

  1. #!/usr/bin/perl
  2. srand;                      # Randomize the rand function.
  3. @lines = <>;                # Read in all the lines.
  4. while (@lines) {            # While more than 0 elements.
  5.     print splice(@lines, rand @lines, 1);
  6. }
  7.